Get premium membership and access questions with answers, video lessons as well as revision papers.

Why might the following function not be in-lined by the computer' s compiler void f1() { int i; for(i=0; i<10; i++) cout <

      

Why might the following function not be in-lined by the computer' s compiler
void f1()
{
int i;
for(i=0; i<10; i++) cout <}

  

Answers


Davis
The function might not be able to be in-lined because it contains a for loop.some compilers will not in-line functions containing loops.
Githiari answered the question on May 12, 2018 at 16:29


Next: Explain what an anonymous union is and how it differs from a normal union.
Previous: Create a C++ class called line that draws a line on the screen.Store the line length in a private integer variable called len.Have line's constructor...

View More Computer Science Questions and Answers | Return to Questions Index


Learn High School English on YouTube

Related Questions